home *** CD-ROM | disk | FTP | other *** search
/ Workbench Add-On / Workbench Add-On - Volume 1.iso / BBS-Archive / Comm / AmiTCP30b2.lha / src / l / inet-handler / c.h < prev    next >
C/C++ Source or Header  |  1994-04-05  |  638b  |  36 lines

  1. /*
  2.  * c.h
  3.  *
  4.  * Author: Tomi Ollila <too@cs.hut.fi>
  5.  *
  6.  * Copyright (c) 1993 AmiTCP/IP Group, <amitcp-group@hut.fi>
  7.  *                    All rights reserved.
  8.  *
  9.  * Created: Wed Sep 15 14:20:40 1993 too
  10.  * Last modified: Sat Oct 16 16:53:44 1993 too
  11.  *
  12.  * $Id: c.h,v 1.1 1993/10/24 12:50:39 too Exp too $
  13.  *
  14.  * HISTORY
  15.  * $Log: c.h,v $
  16.  * Revision 1.1  1993/10/24  12:50:39  too
  17.  * Initial revision
  18.  *
  19.  */
  20.  
  21. #ifndef _C_H_
  22. #define _C_H_
  23.  
  24. /*
  25.  * prototypes
  26.  */
  27. void bzero(char * mem, int len);
  28. #if 0
  29. int  strncasecmp(char *a, char * b, int n);
  30. #endif
  31. int  atoi(char * num);
  32.  
  33. #define isdigit(c) ( (c) >= '0' && (c) <= '9')
  34.  
  35. #endif /* _C_H_ */
  36.